home *** CD-ROM | disk | FTP | other *** search
/ Champak 106 / Vol 106.iso / games / crash_du.swf / scripts / DefineButton2_57 / BUTTONCONDACTION on(press).as
Encoding:
Text File  |  2010-04-12  |  225 b   |  15 lines

  1. on(press){
  2.    if(vol == 1)
  3.    {
  4.       gotoAndStop("off");
  5.       vol = 0;
  6.       allsound.setVolume(0);
  7.    }
  8.    else if(vol == 0)
  9.    {
  10.       gotoAndStop("on");
  11.       vol = 1;
  12.       allsound.setVolume(100);
  13.    }
  14. }
  15.